065fe2ac018687c19850d6d07ac52feb0183a266,python/src/com/jetbrains/python/testing/attest/PythonAtTestRunConfiguration.java,PythonAtTestRunConfiguration,checkConfiguration,#,69
Before Change
@Override
public void checkConfiguration() throws RuntimeConfigurationException {
super.checkConfiguration();
if (!VFSTestFrameworkListener.getInstance().isAtTestInstalled(getInterpreterPath()))
throw new RuntimeConfigurationWarning(PyBundle.message("runcfg.testing.no.test.framework", "attest"));
}
}
After Change
@Override
public void checkConfiguration() throws RuntimeConfigurationException {
super.checkConfiguration();
if (!VFSTestFrameworkListener.getInstance().isAtTestInstalled(PythonSdkType.findSdkByPath(getInterpreterPath())))
throw new RuntimeConfigurationWarning(PyBundle.message("runcfg.testing.no.test.framework", "attest"));
}
}